home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / queries / pgetlinks.h < prev    next >
C/C++ Source or Header  |  1996-07-11  |  607b  |  33 lines

  1. /*
  2.  *--- PGetLinks.h ---------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Fri, Oct 13, 1995 @ 4:08 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetLinks__
  10. #define __PGetLinks__
  11.  
  12. #include "PListQuery.h"
  13.  
  14. class PGetLinks : public PListQuery
  15. {
  16.  
  17. public:
  18.  
  19.     PGetLinks();
  20.  
  21.     const char *    fFilename;
  22.     const char *    sKind;
  23.     short            nPage;
  24.  
  25. private:
  26.  
  27.     virtual void Scan();
  28. };
  29.  
  30. #endif
  31.  
  32. // end of PGetLinks.h
  33.